/*--------------��������---------------------*/

* {
    padding: 0;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    line-height: 25px;
    box-sizing: border-box;
}

@font-face {
    font-family: 'iconfont';
    src: url('../font/iconfont.woff2') format('woff2'), url('../font/iconfont.woff') format('woff'), url('../font/iconfont.ttf') format('truetype');
}

/** 载入网页字体 **/
@font-face {
    font-family: 'nitalagoruikamonokyohkan-06';
    src: url('../fonts/nitalagoruikamonokyohkan-06.ttf');
    font-style: normal;
}

.iconfont {
    font-family: "iconfont" !important;
    font-size: 50px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    display: block;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    color: #197de8;
    text-decoration: none
}

a:active {
    color: #323232;
    text-decoration: none
}

a:visited {
    color: #323232;
    text-decoration: none
}

em {
    font-style: normal
}

li {
    list-style: none
}

img {
    border: 0;
    vertical-align: middle;
    max-width: 100%;
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

p {
    word-wrap: break-word
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

button,
input:not([type="radio"]):not([type="checkbox"]),
select {
    vertical-align: middle;
}

input,
textarea {
    outline: none;
}

button {
    background: none;
}

html {
    font-size: 12px;
}

i {
    font-style: inherit;
}

.clearfix,
.content_gy {
    /*���� IE*/
    zoom: 1;
}


/*����ʹ�÷�ʽ*/

.clearfix:after {
    content: '';
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}

.content_gy {
    margin: 0 auto;
    width: 1200px;
    position: relative;
}

.omit {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/*swiper*/

html,
body {
    position: relative;
}

body {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 0;
}


::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* 滚动槽 */

::-webkit-scrollbar-track {

    border-radius: 10px;
    background: #fff;

}

/* 滚动条滑块 */

::-webkit-scrollbar-thumb {

    border-radius: 10px;

    background: #d7d7d7;

}

::-webkit-scrollbar-thumb:window-inactive {

    background: #d7d7d7;

}

/* 边角 即两个滚动条的交汇处 */

::-webkit-scrollbar-corner {

    background: #021b49;

    border-radius: 10px;

}

/* 两个滚动条的交汇处上用于通过拖动调整元素大小的小控件*/

::-webkit-resizer {}






.dialog_bg {
    position: fixed;
    width: 100%;
    left: 0;
    height: 100vh;
    top: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1002;
    display: none;
}



.dialao_ewm {
    display: none;
    position: fixed;
    width: 280px;
    z-index: 1111;
    height: 300px;
    margin-top: -150px;
    left: 50%;
    top: 50%;
    margin-left: -140px;
    background: #fff;
    text-align: center;
    padding: 20px;

}




.web-form-header-search {
    display: none;
}

.web_header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    display: none;
    z-index: 1001;
    height: 50px;
    align-items: center;
    background: #fff;
    background-color: #18649e;
    
}

.web_header .logo {
    width: 100%;
    text-align: center;
}

.web_header .logo img {
    height: 30px;
}

.web_header .search {
    position: absolute;
    right: 2%;
    width: 40px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.web_header .search img {
    height: 20px;
}
.btn-expand-toggle {
    position: absolute;
    top: 0;
    left: 10px;
    z-index: 10;
    width: 40px;
    height: 50px;
}

.btn-expand-toggle span {
    display: block;
    position: absolute;
    top: 50%;
    left: 20%;
    width: 60%;
    height: 2px;
    background-color: #fff;
    animation-duration: .5s;
    animation-fill-mode: both;
}

.btn-expand-toggle span:first-child {
    transform: translateY(6px) rotate(0);
}

.btn-expand-toggle span:last-child {
    transform: translateY(-6px) rotate(0);
}

.btn-expand-toggle.active span:nth-child(1) {
    animation-name: activefirst
}

.btn-expand-toggle.active span:nth-child(2) {
    animation-name: activesecond
}

.btn-expand-toggle.active span:nth-child(3) {
    animation-name: activethird
}

.btn-expand-toggle.cancel span:nth-child(1) {
    animation-name: cancelfirst
}

.btn-expand-toggle.cancel span:nth-child(2) {
    animation-name: cancelsecond
}

.btn-expand-toggle.cancel span:nth-child(3) {
    animation-name: cancelthird
}

@keyframes activefirst {
    0% {
        transform: translateY(6px) rotate(0)
    }

    100% {
        transform: translateY(0) rotate(45deg)
    }
}

@keyframes activesecond {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@keyframes activethird {
    0% {
        transform: translateY(-6px) rotate(0)
    }

    100% {
        transform: translateY(0) rotate(-45deg)
    }
}

@keyframes cancelfirst {
    0% {
        transform: translateY(0) rotate(-45deg)
    }

    100% {
        transform: translateY(-6px) rotate(0)
    }
}

@keyframes cancelsecond {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes cancelthird {
    0% {
        transform: translateY(0) rotate(45deg)
    }

    100% {
        transform: translateY(6px) rotate(0)
    }
}

.web_header_nav {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 100;
    width: 100%;
    height: 100%;
    padding: 82px 32px 18px;
    background-color: #fff;
    overflow-y: auto;
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
}

.web_header_nav.active {
    left: 0;
}

.web_header_nav a,
.web_header_nav p {
    width: 100%;
    display: block;
    height: 45px;
    font-size: 14px;
    line-height: 45px;
    font-size: 14px;
    padding: 0 20px;
}

.web_header_nav p span {
    display: block;
    height: 45px;
    font-size: 14px;
    line-height: 45px;
}

.web_header_nav .item1 {
    display: none;
}
.web_header_nav .item.active p span {
    border-bottom: 1px solid rgba(217, 217, 217, 0.8);
}

.web_header_nav .link>a,
.web_header_nav .item {
    border-bottom: 1px dotted rgba(217, 217, 217, 0.8);
}

.web_header_nav .item p {
    background: url("../images/add.png") no-repeat calc(100% - 20px) center;
    background-size: 18px;
}

.web_header_nav .item.active p {
    background: url("../images/remove.png") no-repeat calc(100% - 20px) center;
    background-size: 18px;
}

.web_header_nav .item ul {
    display: none;
}

.web_header_nav .item a {
    text-indent: 20px;
}
